home *** CD-ROM | disk | FTP | other *** search
/ Softwarová Záchrana 3 / Softwarova-zachrana-3.bin / Xteq X-Setup / xqdcXSP-Setup-EN.exe / {app} / plugins / XQ Win2K NTP Options 1.xpl < prev    next >
Text File  |  2001-10-29  |  2KB  |  48 lines

  1. "FILE"="Xteq Systems X-Setup Plugin 6.0"
  2. "TYPE"="6"
  3. "COUNT"="1"
  4. "UIPATH"="Network\Network Time Protocol"
  5. "NAME"="NTP Server Options #1"
  6. "VERSION"="1.00"
  7. "OSVERSION"="0001011"
  8. "LANGUAGE"="VBScript"
  9. "TEXT 1"="Allow W32Time to act as NTP Server"
  10. "DESCRIPTION 1"="By default, the W32Time (w32tm.exe) is started on every Windows machine."
  11. "DESCRIPTION 2"="However, out of the box only Domain Controllers (DCs) can act as a time source, which means you can enter "net time /SETSNTP:<COMPNAME>" on an other computer to synchronize the time."
  12. "DESCRIPTION 3"="With this setting turned on, this computer can act as a NTP Server so any other PC can synchronize its local time with this computer."
  13. "DESCRIPTION 4"="This is a useful setting if this computer gets the time from an external time source and all other PCs shouldn't (or can't) connect to that external time source."
  14. "AUTHOR"="Xteq Systems"
  15. "CONTACTURL"="http://www.xteq.com"
  16. "COPYRIGHT"="Copyright ⌐ Xteq Systems - All Rights Reserved"
  17. "COMMENT 1"=""
  18.  
  19.  
  20. sV1="HKLM\SYSTEM\CurrentControlSet\Services\W32Time\Parameters\LocalNTP"
  21.  
  22. Sub Plugin_Initialize 
  23.  i=RegReadValue(sV1)  
  24.  if i=1 then
  25.     SetUIElement 1,true
  26.  end if
  27. End Sub
  28.  
  29. Sub Plugin_CheckData(ElementIndex)
  30. End Sub
  31.  
  32. Sub Plugin_Apply(ElementIndex,ElementSubIndex)
  33.  b=GetUIElement(1)
  34.  if b=true then
  35.     Call RegWriteValue(sV1,"1",2)
  36.  else
  37.     if RegValueExists(sV1) then RegDeleteValue(sV1)
  38.  end if
  39.  
  40.  Call Restart()
  41. End Sub
  42.  
  43. Sub Plugin_Terminate 
  44. End Sub
  45.  
  46.  
  47.  
  48.